home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / self / contrib.lha / contrib / 491 / aa / test5.self < prev    next >
Encoding:
Text File  |  1993-05-30  |  603 b   |  37 lines

  1. " mix and match from test1 and test3 "
  2.  
  3. _AddSlotsIfAbsent: (| myview. |)
  4. viewManager shutdown
  5. myview: aa view copy
  6. myview debugFlag: true
  7. myview name: 'An Algebra assistant named AA'
  8. myview area: (5@26)##(500@@500)
  9. myview realise
  10. myview map
  11.  
  12. _AddSlotsIfAbsent: (| foo. bar. baz. hunk. junk. |)
  13.  
  14. foo: aa boites vboite copy
  15. bar: aa boites htext make: 'Hello'
  16. baz: aa boites htext make: 'There'
  17. foo addEnd: bar 
  18. foo addEnd: baz
  19. foo addEnd: aa boites hline copy thickness: 3
  20. foo addEnd: bar copy
  21. foo fixUpFonts: myview
  22. foo makeRequiredSizes
  23. foo printLine
  24.  
  25. myview equationBoites: foo
  26. myview redraw
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.